Show: Today's Messages :: Unanswered Messages :: Polls :: Message Navigator
133 Search Results Found
1 Forum: Marketplace «» Posted on: Fri, 12 June 2020 12:15 «» By: Michel Cadot
Re: McDP: like expdp/impdp Data Pump programs and much more
… DESCRIBE command The DESCRIBE command is another way to get information about a Data Pump job. The syntaxes of this command are: McDP [<logon>] { -desc | --describe } [<schema>.]<dp job> [[-opt] <display/trace option>] …
2 Forum: Forms «» Posted on: Sat, 13 August 2022 03:29 «» By: sasipalarivattom
Re: Files generated on server with sufix
…report in URL like http://WIN-SERV:9002/reports/rwservlet?server=rep_server1&report=test.rdf&destype=file&desformat=html&userid=scott/ti ger@orcl&desname=c:\rep1.html is it also appending something to the output file…
3 Forum: Forms «» Posted on: Mon, 17 June 2019 10:44 «» By: alhakimy
Re: How make imp button
…want 1- drop user 2- create user 3-grant dba to user 4- imp file.dmp I used this code in 6i but now with 10g did not work forms_ddl('conn system/manager'); forms_ddl('drop user scott cascade'); forms_ddl('create user scott identified by …
4 Forum: JDeveloper, Java & XML «» Posted on: Mon, 19 February 2018 18:05 «» By: BlackSwan
Re: Using IDE Database Connections in Java code
…is a working example of how to use Java to query Oracle DB bcm@bcm-laptop:~$ cat Conn.java import java.sql.*; class Conn { public static void main (String[] args) throws Exception { Class.forName ("oracle.jdbc.OracleDriver"); …
5 Forum: Server Utilities «» Posted on: Thu, 29 December 2016 18:17 «» By: Barbara Boehmer
Re: SQL Loader double quotes in clob data (3 threads from 2 sub-forums merged by bb)
…double quotes are not a problem. The carriage returns do present a problem. You need to have some way to tell where the record ends, such as a record delimiter or something at the beginning or end of each row that tells if to continue or concatenating…
6 Forum: Marketplace «» Posted on: Mon, 22 August 2016 10:14 «» By: Michel Cadot
Re: McDP: like expdp/impdp Data Pump programs and much more
… DDL command In the same vein than the previous command, CONTENT, McDP allows you to get the DDL of all or part of a database, with the transformation you want, using the DDL command. Its syntax is: McDP [<logon>] { -ddl | --ddl } [<…
7 Forum: Marketplace «» Posted on: Mon, 22 August 2016 10:13 «» By: Michel Cadot
Re: McDP: like expdp/impdp Data Pump programs and much more
… CONTENT command Now I want to know what's inside the dump, more I want the DDL, more I want not all but some of these DDL and I want to apply some transformation on them. This is possible with McDP using the CONTENT command. Its syntax is: McDP…
8 Forum: Marketplace «» Posted on: Mon, 22 August 2016 10:13 «» By: Michel Cadot
Re: McDP: like expdp/impdp Data Pump programs and much more
… CONTINUE/RESTART commands Now that we saw how to stop a job, can we restart it? Yes, using the RESTART or CONTINUE command. Its syntax is: McDP [<logon>] { -r | --restart | --continue } [<schema>.]<dp job> [<service name>…
9 Forum: JDeveloper, Java & XML «» Posted on: Wed, 25 May 2016 10:49 «» By: tolupuluri
Re: Need to insert data from XML file into Oracle Table (very urgent)
…Hi, this approach is working fine. But, when I create the XML table using: CREATE TABLE test_xml OF XMLTYPE XMLTYPE STORE AS SECUREFILE BINARY XML; And try to isnert the data like this: INSERT INTO test_xml VALUES( xmltype(bfilename('TESTING…
10 Forum: Server Utilities «» Posted on: Tue, 07 October 2014 14:13 «» By: BlackSwan
Re: Tablespace and Schema info from dumpfile
…or incapable to just Read The Fine Manual? http://docs.oracle.com/database/121/SUTIL/dp_import.htm#SUTIL300 [oracle@localhost ~]$ impdp help=yes Import: Release 11.2.0.2.0 - Production on Tue Oct 7 12:12:08 2014 Copyright (c) 1982, 2009, …
11 Forum: Server Utilities «» Posted on: Thu, 15 August 2013 12:07 «» By: BlackSwan
Re: Error using parfile
…help=yes does NOT show CONSISTENT as be a valid option what happens if you remove it from the control file. [oracle@localhost ~]$ expdp help=yes Export: Release 11.2.0.2.0 - Production on Thu Aug 15 10:05:38 2013 Copyright (c) 1982, 2009, …
12 Forum: Reports & Discoverer «» Posted on: Mon, 01 July 2013 03:56 «» By: samir2012
Re: How to Hide Username and Password in WEB.SHOW_DOCUMENT
…ervlet?'; v_connect VARCHAR2 (200) := 'userid=scott/tiger@test1'; v_report_server VARCHAR2 (50) := 'rep_tbanner'; v_report_name VARCHAR2(100) := '/u01/banner/inb/TEST/reports/rdf/GSTEST.rdf'; v_format VARCHAR2(12) := '…
13 Forum: Server Utilities «» Posted on: Mon, 16 July 2012 19:18 «» By: alan.kendall@nfl.com
Re: Export Multiple tables only
…use the following to export files from 9i one at a time from either Unix or Windows. You can modify the script to also create the imports as well. SCOTT > @cr8_exports_by_TABLE_NAME_on_Unix.sql exp userid=myschema_login/myschema_password file=…
14 Forum: Reports & Discoverer «» Posted on: Sun, 22 April 2012 17:30 «» By: eng_amrelhanafy
Problem in printing pdf report
…print it , It prints normally . The code I use to call report is web.show_document('//localhost:8889/reports/rwservlet?server=rserver&report=rep1.rdf&destype=cache&desformat=pdf&userid=scott/tiger@orcl'); Could anybody help…
15 Forum: Server Utilities «» Posted on: Sun, 15 April 2012 11:39 «» By: BlackSwan
Re: Increasing parallel process in impdp in runtime
… bcm@bcm-laptop:~$ impdp help=yes Import: Release 11.2.0.1.0 - Production on Sun Apr 15 09:37:52 2012 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. The Data Pump Import utility provides a mechanism for …
16 Forum: Programming Interfaces «» Posted on: Mon, 19 March 2012 12:48 «» By: BlackSwan
Re: JDBC Connection problem on Windows 2008 R2
… bcm@bcm-laptop:~$ cat Conn.java import java.sql.*; class Conn { public static void main (String[] args) throws Exception { Class.forName ("oracle.jdbc.OracleDriver"); Connection conn = DriverManager.getConnection ("…
17 Forum: Reports & Discoverer «» Posted on: Tue, 31 January 2012 07:02 «» By: Littlefoot
Re: Error message when passing the report parameter from command line
… following example? rwrun report=test.rdf userid=scott/tiger@mydb desformat=pdf DESTYPE=mail DESNAME="emp1@comp.com, emp2@comp.com"cc="emp3@comp.com"bcc="mgr@comp.com" replyto="me@comp.com" from="me@comp.com…
18 Forum: Server Utilities «» Posted on: Sun, 25 September 2011 22:33 «» By: BlackSwan
Re: indexes parameters original imp
…all else fails, Read The Fine Help You can accomplish the same, but using different syntax. bcm@bcm-laptop:~$ expdp help=yes Export: Release 11.2.0.1.0 - Production on Sun Sep 25 20:31:56 2011 Copyright (c) 1982, 2009, Oracle and/or its …
19 Forum: Forms «» Posted on: Mon, 04 July 2011 12:07 «» By: prasubh
Re: problem in running form on oracle developer suite 10g
…90/f90servlet?form=C:\praforms\form1.fmx&userid=SCOTT/TIGER@orcl&buffer_records=NO&debug_message s=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES and tnsnames.ora is # tnsnames.ora Network Configuration File: C:\oracle\…
20 Forum: Server Administration «» Posted on: Wed, 25 May 2011 13:34 «» By: Michel Cadot
Re: Deleting unwanted SYS shema objects
…- Never ever use SYS (or SYSDBA) but for maintenance purpose (startup, shutdown, backup, recover) - SYS/SYSDBA is special - SYS/SYSDBA is Oracle proprietary (try to open a SR/TAR starting with "i did that with SYS/SYSDBA" and you'll see the …
21 Forum: Server Utilities «» Posted on: Wed, 27 October 2010 06:52 «» By: goracle9
Re: Upgrade 8i to 10g
…IMP-00017: following statement failed with ORACLE error 1119: "CREATE TABLESPACE "RBS" DATAFILE 'C:\ORACLE\ORADATA\ARMADA\RBS01.DBF' SIZE" " 545259520 AUTOEXTEND ON NEXT 5242880 MAXSIZE 32767M DEFAULT STORAG" &…
22 Forum: SQL & PL/SQL «» Posted on: Thu, 16 September 2010 20:45 «» By: Barbara Boehmer
Re: multi column distinct
…analytic function like row_number or rank is exactly what you need. You can use an analytic function to partition the rows by userid, lastname, and firstname, then number the rows within each such partition, ordered by rownum or rowid or whatever unique …
23 Forum: SQL & PL/SQL «» Posted on: Wed, 14 July 2010 18:26 «» By: Barbara Boehmer
Re: Split the values from column
…you always have a set of characters followed by a set of digits, then you could use translate and replace to select from userid, replacing all the digits with null to get the user and replacing all the characters with null to get the id, as shown below…
24 Forum: Server Utilities «» Posted on: Sat, 19 June 2010 03:02 «» By: Michel Cadot
Re: Import 9i dmp Into 10g
… Good! so it works. C:\>imp help=y Import: Release 10.2.0.4.0 - Production on Sam. Juin 19 10:01:50 2010 Copyright (c) 1982, 2007, Oracle. All rights reserved. You can let Import prompt you for parameters by entering the IMP …
25 Forum: Server Utilities «» Posted on: Tue, 20 April 2010 02:54 «» By: Michel Cadot
Re: Export Schema failed
…that are appropriate to what you want to export. Maybe the following and the documentation may help you to know what to do: C:\>exp help=y Export: Release 10.2.0.4.0 - Production on Tue Apr 20 09:54:36 2010 Copyright (c) 1982, 2007, Oracle. …
26 Forum: Server Utilities «» Posted on: Mon, 25 January 2010 23:15 «» By: BlackSwan
Re: can we do import like
…>my question is can i do import of particular table from full exported database file. Yes, you can or at least I could. Since you included no details, I can't provide any details in return. imp help=yes Import: Release 10.2.0.1.0 - …
27 Forum: Server Administration «» Posted on: Mon, 11 January 2010 22:41 «» By: BlackSwan
Re: Connection log for bequeath connection
…then did SQL> CONNECT SCOTT/TIGER which produced following audit log file cat /u01/app/oracle/admin/v102/adump/ora_2278.aud Audit file /u01/app/oracle/admin/v102/adump/ora_2278.aud Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - …
28 Forum: Reports & Discoverer «» Posted on: Wed, 06 January 2010 10:00 «» By: lkngstr82is
Re: REP-300 : 'invalid identifier SELECT ==>
…error: rwclient server=rep_cio14-5394-b userid=scott/cis_test@cisdev report=test_report1.rdf destype=cache desformat=html empno=RPAD(ENAME,256) Following are the codes: QUERY: SELECT &EMPNO REPORT FROM EMP EMPNO has width of 256 …
29 Forum: Server Administration «» Posted on: Sat, 26 December 2009 12:02 «» By: Michel Cadot
Re: Moving subsets of data between servers
…you can use exp with the query clause on this id. C:\>exp help=y Export: Release 10.2.0.4.0 - Production on Sam. DÚc. 26 18:59:24 2009 Copyright (c) 1982, 2007, Oracle. All rights reserved. You can let Export prompt you for parameters by …
30 Forum: Weblogic & Application Server «» Posted on: Thu, 10 December 2009 03:34 «» By: annu-agi
Report_path On applicaiton server report services
… coding behind the button is as following BEGIN web.show_document('http://10.10.0.13:7778/reports/rwservlet?report=emp_list.rdf&userid=scott/tiger@amsdb_xe&destype=CACHE&desformat=html','_blank' ); END; regards Anwer…
31 Forum: Reports & Discoverer «» Posted on: Wed, 02 December 2009 12:53 «» By: Littlefoot
Re: Is it possible to Save Oracle Reports Output as PDF
… you are looking for: rwrun report=test.rdf userid=scott/tiger@mydb desformat=pdf destype=file desname=c:\mydir\test.pdforhttp://myias.mycomp.com:7779/reports/rwservlet?server=myrepserv+report=test.rdf+userid=scott/tiger@mydb+desformat=pdf+destype=file+…
32 Forum: Server Utilities «» Posted on: Thu, 08 October 2009 14:21 «» By: BlackSwan
Re: impdp issue - ORA-02264
… impdp -help Import: Release 10.2.0.4.0 - Production on Thursday, 08 October, 2009 12:19:35 Copyright (c) 2003, 2007, Oracle. All rights reserved. The Data Pump Import utility provides a mechanism for transferring data objects between Oracle…
33 Forum: Server Utilities «» Posted on: Wed, 01 July 2009 09:47 «» By: BlackSwan
Re: import issue
… impdp help=yes Import: Release 10.2.0.4.0 - Production on Wednesday, 01 July, 2009 7:46:15 Copyright (c) 2003, 2007, Oracle. All rights reserved. The Data Pump Import utility provides a mechanism for transferring data objects between Oracle…
34 Forum: Server Utilities «» Posted on: Sun, 17 May 2009 10:47 «» By: shrinika
Re: Impdp with multiple dump file directories
…Mahesh, There was a mistake in my first post in this thread. My expdp parfile content was wrong... But anyhow, i did not have any issues on expdp. I have concern only on impdp. I am testing this in my local machine and i am using Windows XP. Here is…
35 Forum: Server Utilities «» Posted on: Sat, 16 May 2009 09:03 «» By: shrinika
Impdp with multiple dump file directories
…Hello, I am exporting the schema and place the dump file in three different directories... At the end,i wanted to load the dump files into another database. Here is the export parfile content. Export is successfully completed. userid=system/…
36 Forum: Server Utilities «» Posted on: Sun, 19 April 2009 01:22 «» By: Michel Cadot
Re: IMP only filtered data
…C:\>imp help=y Import: Release 10.2.0.4.0 - Production on Dim. Avr. 19 08:20:47 2009 Copyright (c) 1982, 2007, Oracle. All rights reserved. You can let Import prompt you for parameters by entering the IMP command followed by your …
37 Forum: Server Utilities «» Posted on: Tue, 17 March 2009 00:36 «» By: Michel Cadot
Re: Statistics gathered during import
…C:\>imp help=y Import: Release 10.2.0.4.0 - Production on Mar. Mars 17 06:35:18 2009 Copyright (c) 1982, 2007, Oracle. All rights reserved. You can let Import prompt you for parameters by entering the IMP command followed by your …
38 Forum: Server Utilities «» Posted on: Tue, 24 February 2009 08:11 «» By: joy_division
Re: How to Overwrite tables in existing user with import command imp in oracle 8.1.5 or 8.1.7 (merge
… [placebo] /vol02/opt/app> imp help=y Import: Release 10.1.0.4.2 - Production on Tue Feb 24 08:11:01 2009 Copyright (c) 1982, 2005, Oracle. All rights reserved. You can let Import prompt you for parameters by entering the IMP command …
39 Forum: Reports & Discoverer «» Posted on: Thu, 19 February 2009 12:50 «» By: Littlefoot
Re: New to oracle..pls help to open report from form
Something like web.show_document('http://127.0.0.1:8889/reports/rwservlet? report=c:\some_report.jsp&destype=cache&desformat=htmlcss &userid=scott/tiger@ora10 &par_year='||:my_year_parameter);(note the last line).
40 Forum: Server Utilities «» Posted on: Thu, 08 January 2009 00:49 «» By: Michel Cadot
Re: how to import exported full date base
…help=yes Import: Release 10.2.0.4.0 - Production on Thu Jan 8 07:48:35 2009 Copyright (c) 1982, 2007, Oracle. All rights reserved. You can let Import prompt you for parameters by entering the IMP command followed by your username/password…
Pages (4): [1  2  3  4    »]

Current Time: Fri Jul 12 01:05:26 CDT 2024